home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 34
/
Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso
/
Aminet
/
comm
/
tcp
/
GetAllHTML.lha
/
GetAllHTML_ex.script
next >
Wrap
Text File
|
1999-07-06
|
646b
|
19 lines
Echo "This script will try to download many megabytes of pictures from Squid's artwork pages."
Echo "Hopefully the URL http://flyingmice.com/squid/art/sitemap.html has not changed!"
Echo "Use Ctrl-C/D to quit, or close the HTTPResume program."
Echo ""
Set DOWNLOADDIR "Data:SquidArt"
IF NOT EXISTS Data:SquidArt
Echo "OOPS! I need the (download) directory $DOWNLOADDIR unless you edit me..."
ELSE
IF NOT EXISTS GetAllHTML.rexx
Echo "OOPS! You must run this from the directory with GetAllHTML in."
ELSE
Sys:RexxC/Rx GetAllHTML.rexx "http://flyingmice.com/squid/art/sitemap.html" "$DOWNLOADDIR" PIC NOASK
ENDIF
ENDIF
UnSet DOWNLOADDIR